home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dbase / techs.zip / TECH13.ZIP / READ.ME < prev   
Text File  |  1980-01-01  |  916b  |  27 lines

  1. PROGRAM NAME: Capstr.PRG
  2.  
  3. DESCRIPTION:  Routine to capitalize the first letter of words in
  4. a character string.
  5.  
  6. ISSUE: July, 1985
  7. PAGE:  30
  8.  
  9. SOFTWARE VERSIONS:  dBASE III, versions 1.0, 1.1
  10.  
  11. FUNCTION:  The following routine takes a character string passed
  12. as a parameter and returns the string with the first letter of
  13. each word capitalized.  The words "a," "an," "and," "for," "in,"
  14. "or," and "the" are not capitalized unless they are the first
  15. word in the string.
  16.  
  17. FILES NEEDED:   Capstr.PRG
  18.  
  19. SETUP INSTRUCTIONS:  Type DO Capstr WITH <string>, where string
  20. is the variable that you want to capitalize.  If the PARAMETERS
  21. statement is used to pass the character string both in and out of
  22. this routine, the parameter passed must be a memory variable and
  23. not a literal string.  Additionally, avoid using the memory
  24. variable alias "M->." It is not currently supported as a valid
  25. parameter.
  26.  
  27.